home *** CD-ROM | disk | FTP | other *** search
/ Ubisoft - E3 Press Kit (U…Disc 1) (Corporate 2002) / Ubisoft - E3 Press Kit (USA) (Disc 1) (Corporate 2002).bin / pc / lingo.ini < prev    next >
Text File  |  1984-07-31  |  2KB  |  37 lines

  1. -- This is the text file LINGO.INI.  It is designed
  2. -- to tell Director for Windows what XObjects or
  3. -- DLLs should be loaded when starting DIRECTOR.EXE.
  4.  
  5. -- You should have a copy of this file and the associated
  6. -- DLL file (for example, FILEIO.DLL) in the same 
  7. -- location as any Projector you wish to distribute.
  8. -- Otherwise, the Projector will not be able to utilize
  9. -- the features of the DLL you want to use.
  10.  
  11. -- To comment out one of the lines below, use two dashes (--)
  12. -- as in the beginning of these lines.
  13.  
  14. -- The DLLs or XObjects loaded are:
  15. -- FILEIO.DLL, for file input and output
  16.  
  17. on startup
  18.                           set the soundkeepdevice to 0 
  19.                            -- Added to look for files in the "media" subdirectory 
  20.                            global tbsearchpath 
  21.                            set tbsearchpath=[] 
  22.                            append(tbsearchpath, the applicationPath & "Data\") 
  23.                            append(the searchpaths, the applicationPath & "Data") 
  24.  
  25.     put "Now loading LINGO.INI"&&the date&&the time
  26.     put "This computer is running in "&& the colorDepth &"-bit color depth."
  27. --  set the centerStage to TRUE
  28.     -- openxlib "fileio"
  29.     -- Following line prevents crashes on Windows systems when using math functions 
  30.     -- such as power or log and passing bogus or extremely large/small values.
  31.     -- Invoking the float->string conversion code  with a valid value prevents
  32.     -- future crashes in this routine.  drs  1mar96 
  33.     if string(0.0)="a" then nothing
  34. end startup
  35.  
  36.  
  37.